{% extends 'base.html' %} {% block title %}Attendance List{% endblock %} {% block content %}

Attendance for {{ sel_date }}

{% for r in records %} {% empty %} {% endfor %}
Roll Name Status
{{ r.student.roll_number }} {{ r.student.name }} {% if r.status == 'Present' %} Present {% else %} Absent {% endif %}
No attendance records for this date.
{% endblock %}